From: kaf24@firebug.cl.cam.ac.uk Date: Thu, 18 May 2006 07:55:20 +0000 (+0100) Subject: Fix the build after SVM patches. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16047^2~45 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=1f4e4f9380c61632d6829f91e2a7d2aae9e8e3ab;p=xen.git Fix the build after SVM patches. Signed-off-by: Keir Fraser --- diff --git a/xen/arch/x86/hvm/svm/svm.c b/xen/arch/x86/hvm/svm/svm.c index dd0dcaed24..2541a140f9 100644 --- a/xen/arch/x86/hvm/svm/svm.c +++ b/xen/arch/x86/hvm/svm/svm.c @@ -1303,9 +1303,10 @@ static void svm_io_instruction(struct vcpu *v, struct cpu_user_regs *regs) size = 1; HVM_DBG_LOG(DBG_LEVEL_IO, - "svm_io_instruction: port 0x%x eip=%lx:%lx, " - "exit_qualification = %lx", - port, vmcb->cs.sel, vmcb->rip, (unsigned long)info.bytes); + "svm_io_instruction: port 0x%x eip=%x:%"PRIx64", " + "exit_qualification = %"PRIx64, + port, vmcb->cs.sel, vmcb->rip, info.bytes); + /* string instruction */ if (info.fields.str) { @@ -1314,7 +1315,7 @@ static void svm_io_instruction(struct vcpu *v, struct cpu_user_regs *regs) if (!svm_get_io_address(v, regs, dir, &count, &addr)) { - /* We failed to get a valid address, so don't do the IO operation - + /* We failed to get a valid address, so don't do the IO operation - * it would just get worse if we do! Hopefully the guest is handing * gp-faults... */